body {
    font-family: 'Poppins', sans-serif;

}

.hero-section {
    padding: 70px 8%;
}

.welcome-text {
    text-align: center;
    color: #6b6bff;
    font-weight: 500;
    font-size: 18px;
}

.main-heading {
    text-align: center;
    font-size: 35px;
    font-weight: 700;
    margin-top: 10px;
    margin-bottom: 50px;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    /* font-family: 'Poppins', sans-serif; */

}

/* ⭐ LEFT SIDE SLIDE + FADE ANIMATION */
.slide-left-img {
    width: 450px;
    max-width: 100%;
    opacity: 0;
    transform: translateX(-80px);
    animation: slideLeft 1.6s ease-out forwards;
    border-radius: 20px;
}

@keyframes slideLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-right {
    flex: 1;
}

.hero-desc {
    font-size: 16px;
    color: #555;
    line-height: 28px;
    margin-bottom: 20px;
}

.hero-desc a {
    color: #4a3aff;
    text-decoration: none;
    font-weight: 600;
}

.btn-primary {
    margin-top: 20px;
    padding: 14px 25px;
    font-size: 17px;
    border: none;
    background: #293dce;
    color: #fff;
    border-radius: 8px;
    cursor: pointer;
}

.btn-primary:hover {
    background: #182ba4;
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
}

h2 {
    text-align: center;
    /* margin-top: 40px; */
    font-size: 30px;
    font-weight: 600;
    color: #222;
}

p.subtitle {
    text-align: center;
    font-size: 15px;
    color: #666;
    /* margin-bottom: 40px; */
    padding: 10px;
}


.services-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.service-box {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
    overflow: hidden;
}

.service-box:hover {
    transform: translateY(-5px);
}

/* Left side Animation */
.service-box img {
    width: 80px;
    margin-bottom: 15px;
    animation: slideLeft 1s ease forwards;
    opacity: 0;
  border-radius: 10px;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-80px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.service-box h3 {
    font-size: 18px;
    margin: 10px 0;
    font-weight: 600;
    color: #222;
}

.service-box p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

ul {
    padding-left: 20px;
    text-align: left;
}

ul li {
    margin-bottom: 8px;
    font-size: 14px;
}

.choose-section {
    width: 95%;
    max-width: 1300px;
    margin: auto;
    padding: 40px 0;
}

.choose-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: #222;
}

.choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.choose-card {
    background: #eaf0ff;
    padding: 25px;
    border-radius: 18px;
    display: flex;
    gap: 25px;
    /* align-items: flex-start; */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transition: 0.3s;
}

.choose-card:hover {
    transform: translateY(-4px);
}

.choose-card img {
    width: 100px;
    height: 100px;
    border-radius: 10px;
    background: #fff;
    padding: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.2);
    animation: slideLeft 0.7s ease-out forwards;
    opacity: 0;
}

@keyframes slideLeft {
    0% {
        transform: translateX(-40px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

.choose-content h3 {
    font-size: 20px;
    margin: 0;
    color: #111;
    font-weight: 600;
}

.choose-content p {
    font-size: 14px;
    color: #444;
    margin-top: 8px;
    line-height: 1.6;
}

/* Last single box full width */
.full-width {
    grid-column: 1 / 3;
}

@media(max-width: 768px) {
    .choose-grid {
        grid-template-columns: 1fr;
    }

    .full-width {
        grid-column: 1 / 2;
    }
}

/* 4 */
.choose-section-c {
    text-align: center;
    padding: 40px 0;
}

.choose-grid-c {
    display: flex;
    justify-content: center;
    /* center ma laave chhe */
    align-items: center;
}

.choose-img-c {
    width: 90%;
    /* image ne moto kare chhe */
    max-width: 1200px;
    /* maximum size (aavi image ma best) */
    height: auto;
    /* ratio safe */
    display: block;
}

/* whatsapp */
.product-btn-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

/* Square Buttons */
.btn-icon {
    width: 70px;
    /* Square width */
    height: 50px;
    /* Square height */
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15x;
    /* Icon size */
    color: #fff !important;
    border-radius: 6px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: 0.2s ease;
}

/* Hover */
.btn-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* Colors */
.btn-whatsapp {
    background: #25D366;
}

.btn-call {
    background: #007bff;
}

.btn-inquiry {
    background: #ff9800;
}



/* PRODUCT ITEM BOX */
.product-carousel .item {
    background: #fff;
    border-radius: 10px;
    padding: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

/* Hover Effect */
.product-carousel .item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

/* PRODUCT IMAGE */
.product-carousel .item .photo {
    width: 100%;
    height: 200px;
    background-size: cover !important;
    background-position: center !important;
    border-radius: 10px;
}

/* PRODUCT NAME */
.product-carousel .item h3 a {
    font-size: 17px;
    color: #333;
    font-weight: 600;
    display: block;
    margin-top: 12px;
}

.product-carousel .item h3 a:hover {
    color: #ff6600;
}

/* PRICE */
.product-carousel .item h4 {
    font-size: 16px;
    color: #000;
    font-weight: 700;
    margin-top: 8px;
}

/* RATING */
.rating i {
    color: #FFD700;
    font-size: 15px;
}

/* BUTTON ROW */
.product-btn-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

/* Square Buttons */
.btn-icon {
    width: 70px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 28px;
    transition: 0.2s ease;
}

/* Button Hover */
.btn-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0px 5px rgba(0, 0, 0, 0.20);
}

/* Colors */
.btn-whatsapp {
    background: #25D366;
}

.btn-call {
    background: #007bff;
}

.btn-inquiry {
    background: #ff9800;
}

/* 5 */
/*.industry-section {*/
/*    text-align: center;*/
/*    padding: 80px 100px;*/
/*}*/

.subtitle {
    color: #6A4BFF;
    font-size: 16px;
    margin-bottom: 10px;
}

.title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    margin-bottom: 60px;
}

/*.industry-grid {*/
/*    display: flex;*/
/*    justify-content: center;*/
/*    gap: 40px;*/
/*    flex-wrap: wrap;*/
/*}*/

.industry-item {
    text-align: center;
    width: 160px;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: #C7DBF6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.icon-box img {
    width: 38px;
    height: 38px;
}

.industry-item p {
    font-size: 16px;
    color: #111;
    line-height: 22px;
    font-weight: 500;
}


/* 📱 RESPONSIVE MOBILE VIEW */
/*@media (max-width: 768px) {*/
/*    .industry-section {*/
/*        text-align: center;*/
/*        padding: 0px 20px;*/
/*    }*/

/*    .industry-grid {*/
/*        gap: 30px;*/
/*    }*/

/*    .industry-item {*/
/*        width: 45%;*/
/*    }*/

/*    .title {*/
/*        font-size: 28px;*/
/*    }*/
/*}*/

/* Slider image full screen in phone */
#bootstrap-touch-slider .item {
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    height: 70vh;
    /* mobile ma perfect height */
}

/* Very small phones */
@media (max-width: 576px) {
    #bootstrap-touch-slider .item {
        background-size: cover !important;
        /* FULL image cover */
        background-position: center center !important;
        background-repeat: no-repeat !important;
        height: auto !important;
        min-height: 160px !important;
        /* adjust according to your design */
    }

    /* Remove extra blank/black space */
    #bootstrap-touch-slider .item .container,
    #bootstrap-touch-slider .item .row,
    #bootstrap-touch-slider .item .slide-text {
        padding: 20px 0 !important;
    }

}
/* services page */
@media (max-width: 768px) {

    /* Common Section Fixes */
    .hero-section {
        padding: 20px 10px !important;
        margin-top: 0 !important;
    }

    .welcome-text {
        font-size: 16px;
        text-align: center;
    }

    .main-heading {
        font-size: 22px;
        line-height: 28px;
        text-align: center;
        padding: 0 10px;
    }

    /* Hero container */
    .hero-container {
        display: flex;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .hero-left img,
    .slide-left-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: 8px;
        margin: 0 auto;
    }

    .hero-right {
        text-align: center !important;
    }

    .hero-desc {
        font-size: 15px;
        padding: 0 10px;
    }

    .btn-primary {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        margin-top: 10px;
    }

    /* Services Section */
    .services-container {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px;
        padding: 0 10px;
    }

    .service-box {
        padding: 12px;
    }

    .service-box img {
        width: 70px;
        height: auto;
        margin-bottom: 10px;
    }

    .service-box h3 {
        font-size: 16px;
        margin: 8px 0;
    }

    .service-box p {
        font-size: 14px;
    }

    .btn-xs {
        width: 100%;
        padding: 10px;
        font-size: 14px;
    }

    /* FAQ Section */
    .faq-box {
        margin: 10px;
    }

    .faq-question {
        font-size: 15px;
        text-align: start;
    }

    .faq-answer {
        font-size: 14px;
    }

    /* Two column image + content → convert to vertical stack */
    .hero-left,
    .hero-right {
        width: 100% !important;
    }

    /* Page banner fix */
    .page-banner {
        background-position: center !important;
        background-size: cover !important;
        padding: 60px 10px !important;
    }

    .page-banner h1 {
        font-size: 24px !important;
        text-align: center !important;
    }
     .main-heading {
        font-size: 25px;
    }
    h2 {
    text-align: center;
    /* margin-top: 40px; */
    font-size: 25px;
    font-weight: 600;
    color: #222;
}
}



